ostree init: Fix mode list help string
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Mon, 12 Aug 2013 08:53:03 +0000 (10:53 +0200)
committerColin Walters <walters@verbum.org>
Sat, 17 Aug 2013 19:05:04 +0000 (15:05 -0400)
It's archive-z2, not archive-z.

https://bugzilla.gnome.org/show_bug.cgi?id=705849

src/ostree/ot-builtin-init.c

index 6d38899f577277a6ed5c5a1c7876dd93796960c6..252b08ee88490454ff2449edf7f84d9a86542229 100644 (file)
@@ -31,7 +31,7 @@ static char *opt_mode = NULL;
 
 static GOptionEntry options[] = {
   { "archive", 0, 0, G_OPTION_ARG_NONE, &opt_archive, "Initialize repository as archive", NULL },
-  { "mode", 0, 0, G_OPTION_ARG_STRING, &opt_mode, "Initialize repository in given mode (bare, archive, archive-z)", NULL },
+  { "mode", 0, 0, G_OPTION_ARG_STRING, &opt_mode, "Initialize repository in given mode (bare, archive-z2)", NULL },
   { NULL }
 };